FloatIterator

abstract class FloatIterator : Iterator<Float>

An iterator over a sequence of values of type Float.

Constructors

FloatIterator
Link copied to clipboard
fun FloatIterator()

Functions

hasNext
Link copied to clipboard
abstract operator fun hasNext(): Boolean

Returns true if the iteration has more elements.

next
Link copied to clipboard
operator override fun next(): Float

Returns the next element in the iteration.

nextFloat
Link copied to clipboard
abstract fun nextFloat(): Float

Returns the next value in the sequence without boxing.